home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -f
- # SimpleNetStarter restore program, restores all of the necessary files to
- # after a system failure.
- # Copyright 1992 NeXT Computer, Inc. All rights reserved.
-
- # start at root
- cd /
-
- # Remove the existing files so that the restore is back to the original state.
- # Don't muck with hostconfig since it is too vital to booting. It will be
- # replaced by tar.
- while read file; do
- if [ -f $file ]; then
- /bin/rm $file
- fi
- done << TEST
- /etc/hosts
- /etc/sendmail/sendmail.mailhost.cf
- /etc/sendmail/sendmail.subsidiary.cf
- /etc/sendmail/sendmail.sharedsubsidiary.cf
- /etc/bootptab
- /etc/bootparams
- /etc/crontab
- /etc/exports
- /private/tftpboot/mach
- /private/tftpboot/boot
- TEST
-
- # move netinfo away before restoring
- /bin/mv /etc/netinfo /etc/netinfo.aside
-
- # create the tar archive
- /usr/ucb/zcat /etc/systemTar.Z | /bin/tar xvf - > /dev/console 2>&1
-
- # move netinfo away before restoring
- /bin/rm -rf /etc/netinfo.aside
-
- # delete the backup file
- /bin/rm -f /tmp/.SNScreateBackup
-
- #restore the old one
- if [ -f /tmp/.SNScreateBackup~ ]; then
- /bin/mv /tmp/.SNScreateBackup~ /tmp/.SNScreateBackup
- fi
-
-